home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / animate.h next >
Encoding:
C/C++ Source or Header  |  2004-03-28  |  673 b   |  32 lines

  1. /*
  2.   Methods to Interactively Animate an Image Sequence.
  3. */
  4. #ifndef _MAGICK_ANIMATE_H
  5. #define _MAGICK_ANIMATE_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. #if defined(HasX11)
  12.  
  13. #include "magick/xwindow.h"
  14.  
  15. extern MagickExport Image
  16.   *XAnimateImages(Display *,XResourceInfo *,char **,const int,Image *);
  17.  
  18. extern MagickExport unsigned int
  19.   AnimateImageCommand(ImageInfo *,int,char **,char **,ExceptionInfo *),
  20.   AnimateImages(const ImageInfo *,Image *);
  21.  
  22. extern MagickExport void
  23.   XAnimateBackgroundImage(Display *,XResourceInfo *,Image *);
  24.  
  25. #endif
  26.  
  27. #if defined(__cplusplus) || defined(c_plusplus)
  28. }
  29. #endif
  30.  
  31. #endif
  32.